home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / BYACC__ / GRAM.C < prev    next >
Text File  |  1989-11-19  |  267b  |  21 lines

  1. int nitems;
  2. int nrules;
  3. int nsyms;
  4. int ntokens;
  5. int nvars;
  6.  
  7. int   start_symbol;
  8. char  **symbol_name;
  9. short *symbol_value;
  10. short *symbol_prec;
  11. char  *symbol_assoc;
  12.  
  13. short *ritem;
  14. short *rlhs;
  15. short *rrhs;
  16. short *rprec;
  17. char  *rassoc;
  18.  
  19. short **derives;
  20. char *nullable;
  21.